c86697272b87ccb50ed7de09aa360e8c12c77d0f,src/main/java/macaca/client/commands/Url.java,Url,refresh,#JSONObject#,34

Before Change


	}

	public void refresh(JSONObject jsonObj) throws Exception {
		utils.postRequest(DriverCommand.URL.replace(":sessionId", driver.getSessionId()), jsonObj);
	}
}

After Change


	}

	public void refresh(JSONObject jsonObj) throws Exception {
		jsonObj.put("sessionId", driver.getSessionId());
		utils.request("POST", DriverCommand.URL, jsonObj);
	}
}